Break your interface into small reusable Svelte components that are easier to build and maintain.
Components are the main building blocks of a Svelte application. Instead of putting an entire page into one file, you can split the interface into reusable pieces such as buttons, forms, navigation bars, cards, and complete sections.
A component can receive data from its parent, maintain its own state, respond to events, and render other components. Good component boundaries make an application easier to understand and reduce duplicated UI code.
What you'll walk away knowing